home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 24 / AMIGAplus Sonderheft 24 (2000)(Falke)(DE)[!].iso / PublicDomain / Anwendungen / WebView / WebView21i_Install < prev    next >
Text File  |  1999-11-08  |  2KB  |  76 lines

  1. (set #MSG_INTRO (cat "Thanks for downloading WebView V2.1i\nBy Internext Software\n\nRemember to Register!"))
  2. (set #MSG_CHOOSEDIR (cat "Choose a directory to install WebView\nA directory will be made there!"))
  3. (set #MSG_LIBUPDATE (cat "I'll also copy over the\nnecessare libraries to run WebView\nand WebViewPrefs..."))
  4. (set #MSG_COPYMSG (cat "Copying Required Files...\n\n\n\nNOW!!!"))
  5. (set #MSG_HELP (cat "What Help?!?\nJust Click Buttons!"))
  6. (set #MSG_WEBCLEANER (cat "Installing the WebCleaner Fonts\nBy Andrew Graham"))
  7.  
  8. (complete 1)
  9. (message #MSG_INTRO)
  10.  
  11. (set dwr
  12.   (askdir
  13.     (disk)
  14.     (prompt #MSG_CHOOSEDIR)
  15.     (default "Work:")
  16.     (newpath)
  17.     (help #MSG_HELP)
  18.   )
  19. )
  20. (set @default-dest dwr)
  21. (makedir (tackon @default-dest "WebView"))
  22. (copyfiles
  23.   (dest @default-dest)
  24.   (source "/WebView.info")
  25.   (infos)
  26. )
  27. (set @default-dest (tackon @default-dest "WebView"))
  28.  
  29. (complete 25)
  30.  
  31. (message #MSG_COPYMSG)
  32. (copyfiles
  33.   (prompt #MSG_COPYMSG)
  34.   (dest @default-dest)
  35.   (source "WebView21i")
  36.   (infos)
  37. )
  38. (copyfiles
  39.   (prompt #MSG_COPYMSG)
  40.   (dest "Envarc:")
  41.   (source "envarc/webview.prefs")
  42. )
  43.  
  44. (complete 50)
  45. (copyfiles
  46.   (prompt #msg_copymsg)
  47.   (dest @default-dest)
  48.   (source "WebView.doc")
  49.   (infos)
  50. )
  51. (copyfiles
  52.   (prompt #msg_copymsg)
  53.   (dest @default-dest)
  54.   (source "WebView.guide")
  55.   (infos)
  56. )
  57.  
  58. (message #MSG_LIBUPDATE)
  59. (complete 75)
  60. (copylib
  61.   (prompt #MSG_COPYMSG)
  62.   (source "libs/easylife.library")
  63.   (dest "Libs:")
  64. )
  65. (complete 99)
  66. (message #MSG_WEBCLEANER)
  67. (copyfiles
  68.   (prompt #msg_copymsg)
  69.   (dest "Fonts:")
  70.   (source "Fonts/")
  71.   (all)
  72. )
  73.  
  74. (complete 100)
  75.  
  76.